home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
NOVA - For the NeXT Workstation
/
NOVA - For the NeXT Workstation.iso
/
Apps
/
AudioApps
/
Resound
/
StringTable.m
< prev
next >
Wrap
Text File
|
1992-12-20
|
216b
|
21 lines
#import "StringTable.h"
#import "Imports.h"
@implementation StringTable
- ChangeString:(char *) ThisString
{
strcpy (String,ThisString);
return self;
}
- (char *) ReturnString
{
return String;
}
@end